home *** CD-ROM | disk | FTP | other *** search
/ How Many Bugs in a Box / How Many Bugs in a Box.cdr / bugs / page6 / 00227.ls < prev    next >
Encoding:
Text File  |  1995-03-29  |  262 b   |  14 lines

  1. on exitFrame
  2.   global startframe, timerate
  3.   set myframe to startframe + (the timer / timerate)
  4.   if myframe > the frame then
  5.     if myframe > marker("talkend") then
  6.       go("talkend")
  7.     else
  8.       go(myframe)
  9.     end if
  10.   else
  11.     go(the frame)
  12.   end if
  13. end
  14.